home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 7 / Amiga Format AFCD07 (Dec 1996, Issue 91).iso / serious / shareware / programming / aros / graphics / setfont.c < prev    next >
Encoding:
C/C++ Source or Header  |  1996-09-12  |  1.1 KB  |  58 lines

  1. /*
  2.     (C) 1995 AROS - The Amiga Replacement OS
  3.     $Id: setfont.c,v 1.2 1996/08/13 13:58:15 digulla Exp $    $Log
  4.     Desc:
  5.     Lang: english
  6. */
  7. #include "graphics_intern.h"
  8. #include <graphics/rastport.h>
  9. #include <graphics/text.h>
  10.  
  11. LONG driver_SetFont (struct RastPort *, struct TextFont *);
  12.  
  13. /*****************************************************************************
  14.  
  15.     NAME */
  16.     #include <graphics/rastport.h>
  17.     #include <graphics/text.h>
  18.     #include <clib/graphics_protos.h>
  19.  
  20.     __AROS_LH2(LONG, SetFont,
  21.  
  22. /*  SYNOPSIS */
  23.     __AROS_LHA(struct RastPort *, rp, A1),
  24.     __AROS_LHA(struct TextFont *, textFont, A0),
  25.  
  26. /*  LOCATION */
  27.     struct GfxBase *, GfxBase, 11, Graphics)
  28.  
  29. /*  FUNCTION
  30.  
  31.     INPUTS
  32.  
  33.     RESULT
  34.  
  35.     NOTES
  36.  
  37.     EXAMPLE
  38.  
  39.     BUGS
  40.  
  41.     SEE ALSO
  42.  
  43.     INTERNALS
  44.  
  45.     HISTORY
  46.     29-10-95    digulla automatically created from
  47.                 graphics_lib.fd and clib/graphics_protos.h
  48.  
  49. *****************************************************************************/
  50. {
  51.     __AROS_FUNC_INIT
  52.     __AROS_BASE_EXT_DECL(struct GfxBase *,GfxBase)
  53.  
  54.     return driver_SetFont (rp, textFont);
  55.  
  56.     __AROS_FUNC_EXIT
  57. } /* SetFont */
  58.